home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / modem / hqfax41.zip / ECL2FAX.BAT < prev    next >
DOS Batch File  |  1995-03-01  |  1KB  |  30 lines

  1. Echo  off
  2. REM *********************************************************************/
  3. REM                                                                     */
  4. REM   SYSTEM       : HQ-FAX, Uitilities                                 */
  5. REM   COPYRIGHT    : (c) 1995 HTF CONSULTING                            */
  6. REM                                                                     */
  7. REM *********************************************************************/
  8. REM                                                                     */
  9. REM   BAT file name: ECL2FAX.bat                                        */
  10. REM   DESCRIPTION  : Pass parameters to and Invoke the EP2GRAFX.bat     */
  11. REM                  file to drive the conversion process               */
  12. REM                                                                     */
  13. REM *********************************************************************/
  14. REM
  15. Rem - Documentname Fontname (Options )
  16. CLS
  17. REM Echo Convert EPSON file  %1.ECL to Huffman file(s) %1.Fxx, using Font table %2.FNT
  18. REM Echo with options %3 %4 %5 %6 %7 %8 %9
  19.  
  20. if "%1" == "" goto Abend
  21. if "%2" == "" goto Abend
  22.  
  23. EP2GRAFX.BAT %1 %2 %3 %4 %5 %6 %7 %8 %9
  24. goto quit
  25.  
  26. :Abend
  27. Echo  *** You must enter a Document name in parameter 1,
  28. Echo  *** You must enter a Font name in parameter 2
  29. :quit
  30.